RPC(Remote Procedure Call)远程过程调用,本例中包含客户端和服务器端,可以很好的完整进行RPC服务的调试,并很方便进行代码复用,具有很好的示例效果。
.
└── RPC
├── RPCClient
│ └── RPCClient
│ ├── App.config
│ ├── IMyService.cs
│ ├── MyServiceProxy.cs
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── RPCClient.csproj
│ ├── RPCClient.sln
│ ├── bin
│ │ └── Debug
│ │ ├── RPCClient.exe
│ │ ├── RPCClient.exe.config
│ │ └── RPCClient.pdb
│ └── obj
│ └── Debug
│ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ ├── RPCClient.csproj.AssemblyReference.cache
│ ├── RPCClient.csproj.CoreCompileInputs.cache
│ ├── RPCClient.csproj.FileListAbsolute.txt
│ ├── RPCClient.csprojAssemblyReference.cache
│ ├── RPCClient.exe
│ ├── RPCClient.pdb
│ └── TempPE
└── RPCServer
└── ConsoleApp1
├── App.config
├── ConsoleApp1.csproj
├── ConsoleApp1.sln
├── MyTestServiceImpl.cs
├── Program.cs
├── Properties
│ └── AssemblyInfo.cs
├── ServiceHelpercs.cs
├── bin
│ └── Debug
│ ├── ConsoleApp1.exe
│ ├── ConsoleApp1.exe.config
│ └── ConsoleApp1.pdb
└── obj
└── Debug
├── ConsoleApp1.csproj.AssemblyReference.cache
├── ConsoleApp1.csproj.CoreCompileInputs.cache
├── ConsoleApp1.csproj.FileListAbsolute.txt
├── ConsoleApp1.csprojAssemblyReference.cache
├── ConsoleApp1.exe
├── ConsoleApp1.pdb
├── DesignTimeResolveAssemblyReferencesInput.cache
└── TempPE
17 directories, 34 files
评论